@charset "UTF-8";
@import url(../../v3/shige-font/iconfont.css);
@import url(../weui.css);
.flex-1 {
  flex: 1;
}

@media screen and (max-width: 62em) {
  html {
    font-size: 62.5%;
  }

  body {
    background-color: #fff;
    font-size: 1.4rem;
    height: 100vh;
    padding: 5.5rem 0 5.6rem;
  }

  .center-body {
    padding: 0;
  }

  ul {
    list-style: none;
  }
}
@media screen and (max-width: 48em) {
  .center-container {
    height: 100%;
    overflow-y: auto;
  }
}

.mobile-container {
  height: 100%;
  overflow-y: auto;
}

.header-part {
  position: fixed;
  top: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
  left: 0;
  padding: 0 15px 0 15px;
}

.m-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.6rem;
}
.m-header .header-logo {
  width: 40%;
  padding: 1rem 0;
}
.m-header .header-logo .img-responsive {
  max-height: 50px;
}
.m-header .header-nav {
  display: flex;
  align-items: center;
}
.m-header .header-nav__btn {
  font-size: 30px;
  color: #ddd;
  margin-right: 1rem;
}
.m-header .header-nav__btn i {
  font-size: 28px;
}
.m-header .header-nav__logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #333;
  overflow: hidden;
}
.m-header .header-nav__logo img {
  width: 100%;
  display: block;
}
.m-header .header-nav__loginbtn {
  font-size: 20px;
  border: none;
  color: #333;
  background-color: transparent;
}

.head-goback {
  height: 46px;
  line-height: 46px;
  background-color: #f2f2f2;
  display: flex;
}
.head-goback span {
  margin: auto;
  font-size: 16px;
}

.search-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 40px;
  margin-top: 0;
}
.search-bar__input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 3.5rem;
  border: 0;
  border-radius: 4px;
  font-size: 1.4rem;
  padding-left: 1.5rem;
}
.search-bar__btn {
  font-size: 30px;
  width: 4rem;
  position: absolute;
  right: 0;
  text-align: center;
  height: 3.5rem;
  line-height: 3.5rem;
  background: transparent;
}
.search-bar__btn .icon-sousuo {
  font-size: 30px;
}

.m-search-bar {
  position: absolute !important;
  width: calc(100% - 30px) !important;
  height: 50px;
  background-color: #fff;
  margin-left: 0 !important;
}
.m-search-bar .search-bar__input {
  border: 1px solid #ddd;
}

.panel-bg, .menu-bg {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 2000;
}

.menu-bg.slide-in {
  visibility: visible;
  opacity: 1;
}
.menu-bg.slide-in .menu {
  left: 0;
  transition: all 0.3s ease-in;
}
.menu-bg .menu {
  background: #fff;
  height: 100%;
  width: 64%;
  padding: 2rem 1.4rem;
  position: fixed;
  left: -100%;
  transition: all 0.3s ease-in;
  overflow: auto;
}
.menu-bg .menu .menu-panel .menu-title {
  font-size: 1.5rem;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.4rem;
  display: block;
}
.menu-bg .menu .menu-panel .menu-title .icon {
  position: absolute;
  top: 5px;
  right: 0;
}
.menu-bg .menu .menu-panel .menu-list {
  margin-top: 1.5rem;
}
.menu-bg .menu .menu-panel .menu-list ul {
  list-style: none;
  overflow: hidden;
}
.menu-bg .menu .menu-panel .menu-list .menu-item {
  float: left;
  padding: 0.7rem 1rem;
  background-color: #e5e5e5;
  border-radius: 2px;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.menu-bg .menu .menu-panel .menu-list .menu-item a {
  color: #505050;
}
.menu-bg .menu .menu-panel .menu-list .menu-item:not(:last-child) {
  margin-right: 1rem;
}

.icon-next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: transparent transparent #333;
  transform: rotateZ(90deg);
}
.icon-next::after {
  content: "";
  position: absolute;
  top: 1px;
  left: -9px;
  border-style: solid;
  border-width: 0 9px 9px;
  border-color: transparent transparent #fff;
}

.panel-bg.slide-in {
  opacity: 1;
  visibility: visible;
}
.panel-bg.slide-in .user-panel {
  right: 0;
}
.panel-bg .user-panel {
  background-color: #fff;
  position: absolute;
  right: -100%;
  width: 60%;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s;
}
.panel-bg .user-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  display: block;
  overflow: hidden;
  margin-top: 6rem;
}
.panel-bg .user-logo img {
  display: block;
  width: 100%;
}
.panel-bg .user-name {
  margin-top: 5px;
}
.panel-bg .user-nav {
  margin-top: 2rem;
  width: 100%;
  font-size: 1.6rem;
}
.panel-bg .user-nav__item a {
  padding: 1rem 0;
  /* background: rgb(0 0 0 / 20%); */
  display: block;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-left: 2.5rem;
}

.common-header {
  display: flex;
  justify-content: center;
  height: 4.5rem;
  align-items: center;
  background: #f2f2f2;
  font-size: 1.5rem;
  position: relative;
}
.common-header .icon {
  position: absolute;
  left: 1.5rem;
  color: transparent;
  top: 1px;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  /* color: #333; */
  top: 50%;
  transform: translateY(-50%);
}
.common-header .icon::before {
  content: "\e257";
  color: #333;
}

/* 底部导航 */
@media screen and (max-width: 62em) {
  nav {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    box-shadow: 0px -3px 17px 0px rgba(146, 146, 146, 0.2);
    background-color: #fff;
  }
  nav .nav {
    margin: 0.8rem 4.5rem;
  }
  nav .nav .box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
  nav .nav .box a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  nav .nav .box a .iconfont {
    font-size: 2rem;
    line-height: 2rem;
    height: 2rem;
  }
  nav .nav .box a span {
    margin-top: 7px;
    font-size: 1.1rem;
    line-height: 1;
  }
}
.bx-scroll-container {
  overflow-y: auto;
}

.bx-scroll__item {
  border-bottom: 1px solid #ddd;
}
.bx-scroll__item h4 {
  padding: 1.5rem 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bx-scroll__item .left-name {
  flex: 0 0 calc(100% - 10rem);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.m-part--more,
.bx-scroll--more {
  margin: 0 auto;
  width: 5rem;
  height: 5rem;
  text-align: center;
}

.bx-scroll--more > div {
  background-color: #67CF22;
  height: 100%;
  width: 6px;
  display: inline-block;
  margin: 0 2px;
  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.bx-scroll--more .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.bx-scroll--more .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.bx-scroll--more .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.bx-scroll--more .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/*# sourceMappingURL=common.css.map */
